#news-listing-header,
#news-category-header {
    color: var(--brand-berry);
    text-align: center;
    margin: 20px auto;
}

.news-listing {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.news-listing .card {
    width: 33%;
    padding: 0 50px 25px 50px;
    box-sizing: border-box;
}

.news-listing .card h2 {
    font-size: 1rem;
    color: var(--brand-berry);
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 140%;
}

.news-listing .card h2 a {
    color: var(--brand-berry);
}

.news-listing .summary {
    font-size: 0.75rem;
}

.news-listing .image {
    margin: 0 0 20px 0;
}

.related-title {
    text-align: center;
    margin: 30px 0;
}

#articleSearchFormSmall {
    margin-bottom: 20px;
}

#articleSearchFormSmall input[type="text"] {
    width: 100%;
    padding: 15px 15px;
    box-sizing: border-box;
    font-size: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    outline: none;
}

#articleSearchFormSmall input[type="submit"] {
    display: none;
}

.NewsArticles #articleSearchForm {
    display: none;
}

.PagingTable {
    width: 100%;
}

.blog-article-view .details li p {
    line-height: 140%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .news-listing .card {
        width: 50%;
    }

    .PagingTable, .PagingTable tr, .PagingTable td, .PagingTable tbody {
        display: block;
        text-align: center;
    }

    .PagingTable td {
        padding: 10px 0;
    }
}

@media screen and (max-width: 767px) {
    .news-listing .card {
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
}
